home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 12 / 4 / DISK1249.ZIP / PHOTO.TXT < prev    next >
Text File  |  1988-09-16  |  39KB  |  1,057 lines

  1. WP$          WPWPWash 'n Ware                        Photo PackWP
  2.           WPWPWP
  3.           WPWPWP
  4.           
  5.           
  6.           TO RUN PHOTOPACK WITHOUT READING THE MANUAL!
  7.           
  8.           Use MENU only if you have a COLOR GRAPHICS system!
  9.           
  10.           Use MMENU if you have a monochrome system.
  11.           
  12.           
  13.           INTRODUCTION
  14.           
  15.           Welcome to Photo Pack!
  16.           
  17.           Photo Pack is a collection of programs for amateur and
  18.           professional photographers.  With Photo Pack, you can:
  19.           
  20.                   Examine diopters and distances
  21.           
  22.                   Check motion or shutter speed
  23.           
  24.                   Examine image size
  25.           
  26.                   Explore enlarger head distance
  27.           
  28.                   Study flash data
  29.           
  30.                   Check depth of field
  31.           
  32.                   Print model releases
  33.           
  34.                   Print sets of labels
  35.           
  36.                   Have a darkroom timer
  37.           
  38.                   Use a negative/slide database
  39.           
  40.           
  41.           INSTALLATION
  42.           
  43.           PhotoPack requires an IBM PC or 100% compatable.  The
  44.           machine should have a minimum of 256K of RAM.  Photo Pack
  45.           works best with a color monitor -- in fact, the darkroom
  46.           timer feature requires a color monitor.  While Photo Pack
  47.           will run with one diskette drive, two drives give the best
  48.           performance.
  49.           
  50.           FLOPPY SYSTEMS
  51.           
  52.           You must do three things to install Photo Pack.  You must:
  53.           
  54.                   1) Place DOS on the Photo Pack diskette.
  55.           
  56.                   2) Add FILES and BUFFERS to your CONFIG.SYS file
  57.           
  58.                   3) Add a SET statement to your AUTOEXEC.BAT
  59.           
  60.           WPWP1WP
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.           WPWPWash 'n Ware                        Photo PackWP
  68.           WPWPWP
  69.           WPWPWP
  70.           Adding DOS
  71.           
  72.           Make Photo Pack a bootable diskette!  Format a blank
  73.           diskette with the command:
  74.           
  75.                   A> FORMAT B: /S
  76.           
  77.           This formats a diskette in drive B; it also places a
  78.           bootable DOS on that diskette.  Next, copy all the
  79.           PhotoPack programs to drive B.
  80.           
  81.           Config.sys
  82.           
  83.           If you already use a CONFIG.SYS file, check that it
  84.           contains at least the following statements:
  85.           
  86.                   FILES=8
  87.                   BUFFERS=16
  88.           
  89.           You may have different values for FILES and BUFFERS.  As
  90.           long as the values are greater than or equal to 8 and 16
  91.           you'll be okay.  Smaller values may work at a cost in
  92.           performance.
  93.           
  94.           If you don't have a CONFIG.SYS file, here's how to build
  95.           one:
  96.           
  97.           Boot your system with your DOS disk in drive A.  At the A
  98.           prompt, do the following:
  99.           
  100.                   A>  COPY CON CONFIG.SYS    [Press the Return key]
  101.           
  102.                       FILES = 8              [Press the Return key]
  103.           
  104.                       BUFFERS = 16           [Press the Return key]
  105.           
  106.                       ^Z                     [Press the Return key]
  107.           
  108.           After you enter the "COPY CON CONFIG.SYS" command, the
  109.           cursor returns to a blank line -- there is no A prompt!
  110.           Just type the "FILES" and "BUFFERS" statement and strike
  111.           the Return key after each line.
  112.           
  113.           Does the "^Z" look funny?  It's called a "Control Z".  You
  114.           can get it one of two ways -- you can press the F6
  115.           function key, or you can hold down the Control key and
  116.           press the letter Z.
  117.           
  118.           Once you've built the CONFIG.SYS file, you must reboot the
  119.           system.
  120.           
  121.           Autoexec.bat
  122.           
  123.           You may have several items in your AUTOEXEC.BAT file.  You
  124.           must add the following statement:
  125.           
  126.           WPWP2WP
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.           WPWPWash 'n Ware                        Photo PackWP
  134.           WPWPWP
  135.           WPWPWP
  136.                   SET TRANTRAK=xxxx
  137.           
  138.           where:
  139.           
  140.           xxxx = the drive/path identifer that holds the
  141.           slide/transparency database.  For example, if you want to
  142.           use drive B as your data drive, then add
  143.           
  144.                   SET TRANTRAK=B
  145.           
  146.           to your AUTOEXEC.BAT file.  If you want to use drive B,
  147.           subdirectory PHOTO, then add
  148.           
  149.                   SET TRANTRAK=B:\PHOTO\
  150.           
  151.           to your AUTOEXEC.BAT file.
  152.           
  153.           If you have an AUTOEXEC.BAT file on your DOS disk, you'll
  154.           probably want to copy it to your Photo Pack system disk.
  155.           Then use your favorite editor or word processor to add the
  156.           "SET" statement.
  157.           
  158.           If you don't have an AUTOEXEC.BAT file, you can build a
  159.           simple one like this:
  160.           
  161.           Place the Photo Pack system disk in drive A.
  162.           
  163.           At the A prompt, type the following:
  164.           
  165.                   A> COPY CON AUTOEXEC.BAT        [Press the Return key]
  166.           
  167.                      SET TRANTRAK=xxxx            [Press the Return key]
  168.                                                   [set xxxx as defined above]
  169.                      ^Z                           [Press the Return key]
  170.           
  171.           Note that you must supply a value for "xxxx".  Also, note
  172.           you terminated the copy with a "Control Z".
  173.           
  174.           Photo Pack is now configured for a floppy system.  Reboot
  175.           the system and type MENU at the DOS prompt if you have a
  176.           color system.  If you have a monochrome system, type
  177.           MMENU.
  178.           
  179.           
  180.           HARD DRIVE SYSTEMS
  181.           
  182.           You must do three things to install Photo Pack.  You must:
  183.           
  184.                   1) Place Photo Pack in a subdirectory
  185.           
  186.                   2) Add FILES and BUFFERS to your CONFIG.SYS file
  187.           
  188.                   3) Add a SET statement to your AUTOEXEC.BAT
  189.           
  190.           Subdirectory
  191.           
  192.           WPWP3WP
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.           WPWPWash 'n Ware                        Photo PackWP
  200.           WPWPWP
  201.           WPWPWP
  202.           Place Photo Pack in it's own subdirectory.  First, build a
  203.           subdirectory as follows:
  204.           
  205.                   C> MD PHOTO             [Press the Return key]
  206.           
  207.                   C> CD PHOTO             [Press the Return key]
  208.           
  209.           You're now in the Photo Pack subdirectory.  Copy all the
  210.           Photo Pack files to this subdirectory.
  211.           
  212.           Config.sys
  213.           
  214.           If you already use a CONFIG.SYS file, check that it
  215.           contains at least the following statements:
  216.           
  217.                   FILES=8
  218.                   BUFFERS=16
  219.           
  220.           You may have different values for FILES and BUFFERS.  As
  221.           long as the values are greater than or equal to 8 and 16
  222.           you'll be okay.  Smaller values may work at a cost in
  223.           performance.
  224.           
  225.           If you don't have a CONFIG.SYS file, here's how to build
  226.           one:
  227.           
  228.           Boot your system.  At the C prompt, do the following:
  229.           
  230.                   C>  COPY CON CONFIG.SYS    [Press the Return key]
  231.           
  232.                       FILES = 8              [Press the Return key]
  233.           
  234.                       BUFFERS = 16           [Press the Return key]
  235.           
  236.                       ^Z                     [Press the Return key]
  237.           
  238.           After you enter the "COPY CON CONFIG.SYS" command, the
  239.           cursor returns to a blank line -- there is no A prompt!
  240.           Just type the "FILES" and "BUFFERS" statement and strike
  241.           the Return key after each line.
  242.           
  243.           Does the "^Z" look funny?  It's called a "Control Z".  You
  244.           can get it one of two ways -- you can press the F6
  245.           function key, or you can hold down the Control key and
  246.           press the letter Z.
  247.           
  248.           Once you've built the CONFIG.SYS file, you must reboot the
  249.           system.
  250.           
  251.           Autoexec.bat
  252.           
  253.           You may have several items in your AUTOEXEC.BAT file.  You
  254.           must add the following statement:
  255.           
  256.                   SET TRANTRAK=xxxx
  257.           
  258.           WPWP4WP
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.           WPWPWash 'n Ware                        Photo PackWP
  266.           WPWPWP
  267.           WPWPWP
  268.           where:
  269.           
  270.           xxxx = the drive/path identifer that holds the
  271.           slide/transparency database.  For example, if you want to
  272.           use drive B as your data drive, then add
  273.           
  274.                   SET TRANTRAK=B
  275.           
  276.           to your AUTOEXEC.BAT file.  If you want to use drive C,
  277.           subdirectory PHOTO, then add
  278.           
  279.                   SET TRANTRAK=C:\PHOTO\
  280.           
  281.           to your AUTOEXEC.BAT file.
  282.           
  283.           If you have an AUTOEXEC.BAT file, use your favorite editor
  284.           or word processor to add the "SET" statement.
  285.           
  286.           If you don't have an AUTOEXEC.BAT file, you can build a
  287.           simple one like this:
  288.           
  289.           Boot your system.
  290.           
  291.           At the C prompt, type the following:
  292.           
  293.                   C> COPY CON AUTOEXEC.BAT        [Press the Return key]
  294.           
  295.                      SET TRANTRAK=xxxx            [Press the Return key]
  296.                                                   [set xxxx as defined above]
  297.                      ^Z                           [Press the Return key]
  298.           
  299.           Note that you must supply a value for "xxxx".  Also, note
  300.           you terminated the copy with a "Control Z".
  301.           
  302.           Photo Pack is now configured for a hard drive system.
  303.           Reboot the system, switch to the PHOTO subdirectory (CD
  304.           PHOTO),  and type MENU at the DOS prompt if you have a
  305.           color system.  If you have a monochrome system, type
  306.           MMENU.
  307.           
  308.           
  309.           MAIN MENU
  310.           
  311.           The Main Menu shows all the options.  There is a one digit
  312.           transaction identifier followed by a short description of
  313.           each transaction.
  314.           
  315.           To select a transaction, just press the key noted by the
  316.           transaction description.  Photo Pack will load the proper
  317.           transaction.
  318.           
  319.           When the transaction completes, you'll return to the main
  320.           menu.
  321.           
  322.           
  323.           TRANSACTION 1: CLOSE UP
  324.           WPWP5WP
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331.           WPWPWash 'n Ware                        Photo PackWP
  332.           WPWPWP
  333.           WPWPWP
  334.           
  335.           Do you like closeup photography?  Have you ever used a
  336.           closeup filter?  If so, the closeup program could give you
  337.           a hand.
  338.           
  339.           Closeup filters screw on the front of camera lenses.
  340.           They're called diopter lenses and are usually number +1,
  341.           +2, and +3.  You can use diopters one at a time or you can
  342.           combine them.  For example, combine a +2 and a +3 for a
  343.           +5.
  344.           
  345.           The closeup program shows what happens when you combine
  346.           diopters.  It also   suggests a shooting distance.
  347.           Knowing the shooting distance helps you decide on a tripod
  348.           or other camera support.
  349.           
  350.           The closeup program asks for a focus setting for any
  351.           particular photograph.  It then displays a table of
  352.           distances (in inches) for a diopter set.
  353.           
  354.           There is an image size feature on the main menu.  Use it
  355.           with the closeup program for more information on closeup
  356.           photography.
  357.           
  358.           
  359.           TRANSACTION 2: MOTION OR SHUTTER SPEED
  360.           
  361.           This programs gives you a chance to see if you can really
  362.           shoot that speeding car!  Photographs information suggests
  363.           the proper camera settings.  The required data are:
  364.           
  365.                   1) Distance to the subject in feet
  366.           
  367.                   2) A direction factor
  368.           
  369.                   3) The top speed of the object in MPH
  370.           
  371.                   4) Focal length and standard focal length of the
  372.                   camera and lens
  373.           
  374.           This information goes into a table that shows the
  375.           suggested shutter speeds for a set of distances from the
  376.           camera.
  377.           
  378.           The direction factor allows the speed to be adjusted by
  379.           the direction the object is traveling in relation to the
  380.           photographer.
  381.           
  382.           A factor of 1 means that the object is moving across the
  383.           field of vision from left ot right or right to left.  For
  384.           a photograph, this type of motion requires the least
  385.           compensation for calculating the shutter speed.
  386.           
  387.           The factor of 2 means an object is moving at an angle in
  388.           relation to the camera; for example, from upper right to
  389.           lower left.
  390.           WPWP6WP
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.           WPWPWash 'n Ware                        Photo PackWP
  398.           WPWPWP
  399.           WPWPWP
  400.           
  401.           A factor of 3 means the object is moving toward or away
  402.           from you.  If this action is very fast, we advise the
  403.           photographer to be concerned about his equipment and
  404.           health as well as the exposure!
  405.           
  406.           The request for the standard focal length lens for your
  407.           camera lets the program adjust for different film formats.
  408.           Use the following values as a guide:
  409.           
  410.                   for 35 MM film, use 44 MM as the std lens
  411.           
  412.                   for 120 MM, use 75 MM for std lens
  413.           
  414.                   for 6x7, use 80 MM
  415.           
  416.                   for 6x8, use 90 MM
  417.           
  418.                   for 4"x5", use 5.5 inches
  419.           
  420.                   for 5"x7", use 7.5 inches
  421.           
  422.                   for 8"x10", use 11.5 inches
  423.           
  424.           It may be necessary to estimate between values in some
  425.           situations.
  426.           
  427.           
  428.           TRANSACTION 3: IMAGE SIZE
  429.           
  430.           Sometimes you need to know the film image size when you're
  431.           planning to print pictures.  Photographers with larger
  432.           format cameras may find this information especially
  433.           useful.  Image size can also be used for calculating
  434.           magnifications and indicates the focal length lens for the
  435.           desired result.
  436.           
  437.           The program asks for the following information:
  438.           
  439.                   1) Distance to subject
  440.           
  441.                   2) Focal length of lens
  442.           
  443.                   3) Magnification required
  444.           
  445.           
  446.           TRANSACTION 4: ENLARGER
  447.           
  448.           When you print a photograph, sometimes you change the
  449.           magnification of the print or the size of the final print.
  450.           This program takes the information from a good print and
  451.           supplies a table for changing the enlarger head to paper
  452.           distance.  You may optionally print a copy of this table.
  453.           Required data are:
  454.           
  455.                   1) The name of the paper (for reporting)
  456.           WPWP7WP
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.           WPWPWash 'n Ware                        Photo PackWP
  464.           WPWPWP
  465.           WPWPWP
  466.           
  467.                   2) Height of the good print
  468.           
  469.                   3) F/Stop of the good print
  470.           
  471.                   4) Exposure time for a good print
  472.           
  473.                   5) Min and Max height values for table.
  474.           
  475.           
  476.           TRANSACTION 5: FLASH
  477.           
  478.           Flash photography can be confusing.  This feature helps
  479.           you work with electronic flash units.
  480.           
  481.           One number always used when talking about flashes is BCPS
  482.           (Bulb Candle Power Seconds).  BCPS has a limited use in
  483.           comparing flashes.  BCPS is really a way of measuring the
  484.           output of a flash unit with a self contained reflector.
  485.           
  486.           The Guide Number generated by this program represents the
  487.           product of a distance and aperature that creates the
  488.           proper exposure for a given film and flash.
  489.           
  490.           The required data are:
  491.           
  492.                   1) BCPS (If not known, computer will calculate)
  493.           
  494.                   2) F/Stop of a good exposure
  495.           
  496.           Once the Guide Number is determined, a table of distances
  497.           and aperatures is generated.  Use these numbers to
  498.           approximate the correct exposure for a flash.  Remember
  499.           that it's always a good idea to bracket exposures whenever
  500.           trying anything new.  You can optionally print the table
  501.           after it's created.
  502.           
  503.           
  504.           TRANSACTION 6: DEPTH OF FIELD
  505.           
  506.           Depth of field is a useful photographic tool.  The depth
  507.           of field in a picture determines what objects will be in
  508.           focus.
  509.           
  510.           The actual depth of field is the range between the closest
  511.           point in which everything will be in sharp focus and the
  512.           most distant point.
  513.           
  514.           Hyperfocal distance is the buzzword used when talking
  515.           about depth of field.  If you set a camera lens at
  516.           infinity, the hyperfocal distance is the closest point
  517.           from which all objects are in acceptably sharp focus.  In
  518.           other words, everything from the hyperfocal distance to
  519.           infinity will be in focus.
  520.           
  521.           This feature creates a table from the input data that
  522.           WPWP8WP
  523.  
  524.  
  525.  
  526.  
  527.  
  528.  
  529.           WPWPWash 'n Ware                        Photo PackWP
  530.           WPWPWP
  531.           WPWPWP
  532.           notes the near and far focus distances for specific lenses
  533.           and f/stops.  These figures indicate what to expect from
  534.           your lens.
  535.           
  536.           Required data are:
  537.           
  538.                   1) Maximum (smallest) f/stop
  539.           
  540.                   2) Focal length of the lens
  541.           
  542.                   3) Focus point of the lens in feet
  543.           
  544.           
  545.           TRANSACTION 7: MODEL RELEASE
  546.           
  547.           Many times a photographer needs a model release to use a
  548.           picture of a person.  This feature prints a "BLOCKBUSTER"
  549.           model release.  This release provides the photographer
  550.           with a suitable release for general use.  This release
  551.           will not protect a photographer from illegal or malicious
  552.           use of a photograph, but it is a good starting point for a
  553.           generalized release.
  554.           
  555.           This option requests your legal name (no commas, please).
  556.           You may also add some text of your own to be included in
  557.           the release; be sure your text doesn't contradict the
  558.           release.  The data requested will be used if the release
  559.           is needed for a specific date; in general, it's best to
  560.           leave the date blank and write it in when you actually use
  561.           the release.
  562.           
  563.           This is a general release; please check with your lawyer
  564.           to make sure it will suit your particular needs.
  565.           
  566.           
  567.           TRANSACTION 8: A DARKROOM TIMER
  568.           
  569.           NOTE: This option requires a color monitor!
  570.           
  571.           Using a computer as a darkroom timer lets the computer
  572.           become an integral part of the darkroom.  This program
  573.           functions as a darkroom processing timer.
  574.           
  575.           The timer handles up to 16 processing steps; these steps
  576.           may run in a darkroom or in a "lights-on" mode.  The
  577.           darkroom mode uses a black screen background with red
  578.           digits.  NOTE: Color monitors differ; test yours to find
  579.           the proper brightness for "safelight compatability".
  580.           
  581.           Each of the steps may be entered separately; you must
  582.           enter a description, minutes, and seconds for each step.
  583.           Once you've defined a step, you may save it for later use.
  584.           Stored steps may be called from memory and used at any
  585.           time.
  586.           
  587.           You can set tones or "beeps" to help you with developing
  588.           WPWP9WP
  589.  
  590.  
  591.  
  592.  
  593.  
  594.  
  595.           WPWPWash 'n Ware                        Photo PackWP
  596.           WPWPWP
  597.           WPWPWP
  598.           and printing.  You can toggle tones for 30 or 60 seconds;
  599.           these cue you to agitate film or paper.  The one second
  600.           tone acts as a metronome.  When the "end option" is
  601.           selected, a tone sounds at the end, as well as a special
  602.           tone 10 seconds before the end.
  603.           
  604.           During the timer countdown, two function keys and the
  605.           space bar are active.  Function key "F1" skips the current
  606.           step and continues with the next step.  Function key "F2"
  607.           toggles the tone -- if the tone is off, F2 turns it on; if
  608.           the tone is on, F2 turns it off.  This only works for the
  609.           one second tone.
  610.           
  611.           The space bar pauses the current step.  When you press the
  612.           space bar, the current step temporarily halts.  Press the
  613.           space bar again and the current step resumes.
  614.           
  615.           You may save step sequences in "procedures".  A procedure
  616.           may be fetched from the data disk to invoke a pre-defined
  617.           set of steps.  For a procedure to work, all of the steps
  618.           must be stored in the step file as individual steps.  The
  619.           combination of step and procedure files makes it possible
  620.           to create a set of commonly used routines.
  621.           
  622.           
  623.           TRANSACTION 9: LABELS
  624.           
  625.           Photographers always need labels -- return address labels,
  626.           equipment identification labels, slide labels, or whatever
  627.           else labels you can think of.  This feature gives you a
  628.           flexible way to print multi-purpose labels with your Epson
  629.           or Epson-compatable printer.
  630.           
  631.           This programs uses "one-up" labels and offers three
  632.           options:
  633.           
  634.           Option 1:
  635.                   Standard labels, 5 lines per label, 36 characters
  636.                   per line.
  637.           Option 2:
  638.                   Non-standard labels, You enter number of lines per
  639.                   label and the width of each line.
  640.           Option 3:
  641.                   Slide mount labels.  This printing is much smaller
  642.                   than standard size printing and allows twice as
  643.                   many lines on a label.  Check your labels to be sure,
  644.                   but most labels show that a maximum of 5 lines of
  645.                   text can fit on a 35mm slide mount.  Suggested
  646.                   options for slide labels is 8 text lines and 2 lines
  647.                   spacing between labels.  This maintains proper
  648.                   alignment and allows for use of standard size labels.
  649.                   NOTE: You'll have to cut the labels after you print
  650.                   them.
  651.           
  652.           All labels may be optionally printed in enhanced mode.
  653.           This means better print quality, but longer printing time.
  654.           WPWP10WP
  655.  
  656.  
  657.  
  658.  
  659.  
  660.  
  661.           WPWPWash 'n Ware                        Photo PackWP
  662.           WPWPWP
  663.           WPWPWP
  664.           You may also print alignment labels to assist in lining up
  665.           your printer.
  666.           
  667.           
  668.           TRANSACTION A: SLIDE FILING PROGRAM
  669.           
  670.           "TranTrack" is a multi-keyed database that helps you track
  671.           all those shoeboxes full of slides and negatives.
  672.           
  673.           TranTrack captures information about your slides and
  674.           negatives.  Describe your transparencies with multiple
  675.           keywords in different categories.
  676.           
  677.           Later, retrieve this information by category and keyword.
  678.           
  679.           For example, you may display information about all the
  680.           transparencies in the Nature category that have the
  681.           keyword "AZALEA".
  682.           
  683.           Why do this?  Well, since you can also assign numbers
  684.           (Sequence & Box) to your transparencies, this information
  685.           helps locate specific slides.
  686.           
  687.           "TranTrack" handles about 65,000 records in a single
  688.           database.  If you use floppy disks for your database, you
  689.           can use multiple disks for an unlimited number of records.
  690.           (NOTE: You can average from around 1400 to 1800 records
  691.           per floppy disk.)
  692.           
  693.           New Data Files
  694.           
  695.           When TranTrack begins, it searches for data files.  The
  696.           first time you execute TranTrack, there are no data files
  697.           -- you haven't created any yet!
  698.           
  699.           Reply "Y" to the prompt to create new data files.  If you
  700.           reply "N", the program will terminate and return to the
  701.           main menu.
  702.           
  703.           SUGGESTION:  If you store data on floppy disks, you can
  704.           use different disks for different slide groups.  For
  705.           example, floppy disk number 1 refers to shoebox number 1,
  706.           floppy disk number 2 refers to everything in your desk
  707.           drawer, etc.  You can start new files on a new floppy disk
  708.           just by putting a blank, formatted floppy disk in your
  709.           data drive.
  710.           
  711.           This works because TranTrack uses the same names for all
  712.           data files.  If you want to store data records by years,
  713.           just write a label on a blank floppy diskette.  Use this
  714.           diskette in your data drive.  Since it is blank, Trantrack
  715.           will build a new set of files.  You can use this diskette
  716.           to enter that year's worth of slides.
  717.           
  718.           Ready for the next year?  Get a new formated diskette --
  719.           again, label it with a soft-tip ink pen.  Use it in the
  720.           WPWP11WP
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.           WPWPWash 'n Ware                        Photo PackWP
  728.           WPWPWP
  729.           WPWPWP
  730.           data drive and build a new set of files again.
  731.           
  732.           NOTE: A TranTrack database can hold thousands of records.
  733.           If you lose a database, you can lose thousands of records!
  734.           (How can you lose a database?  You might crinkle a
  735.           diskette, you could crash your hard drive, the dog could
  736.           piddle in the wrong place, or UFO ALIEN ELVIS
  737.           IMPERSONATORS COULD STEAL YOUR DATABASE AS DIET FOOD!)
  738.           
  739.           We recommend you use diskettes for your database medium
  740.           and take plenty (PLENTY) of backups.  It's a good idea to
  741.           have two or three generations of backups.  What's a
  742.           generation?  Consider every time you sit and
  743.           "add/delete/modify" your database to be a "session".  If
  744.           you have one backup from before your session and another
  745.           one after the session, that's two generations.
  746.           
  747.           SUGGESTION NUMBER TWO:  Back up, back up, back up.
  748.           Diskettes are cheap.  Make plenty of database backups.  It
  749.           takes a lot of time to re-build a database because your
  750.           dog diddles on the diskette -- it takes only a minute to
  751.           make a backup.  You may use DISKCOPY to make diskette
  752.           backups.  Place your DOS diskette in drive A.  Type
  753.           "DISKCOPY A: B:" and press ENTER.  Place your data disk in
  754.           drive A (remove the DOS disk) and a backup disk (doesn't
  755.           even have to be formatted) in drive B.  Press ENTER to
  756.           finish the backup.  For more information on this subject,
  757.           please refer to your DOS manual.
  758.           
  759.           MAIN MENU
  760.           
  761.           The main menu provides four options.  They are:
  762.           
  763.           F1 - Add new transparency and keywords
  764.           
  765.           F2 - Query or maintain existing transparencies
  766.           
  767.           F3 - Toggle Sound
  768.           
  769.           F10 - Terminate Program
  770.           
  771.           
  772.           F1 - ADD NEW TRANSPARENCY AND KEYWORDS
  773.           
  774.           Use this option to add a new slide to the data files.
  775.           When you press the F1 key, you'll see the "Add a Record"
  776.           screen.  Fill in the fields to define your slide.  The
  777.           Month data field is range-checked; it must be a value
  778.           between 1 and 12.  All the other fields are free-form
  779.           fields.
  780.           
  781.           When you are entering data, you're using a mini word-
  782.           processor.  You can move the cursor back and forth with
  783.           the left and right arrows.  The Home key moves the cursor
  784.           to the beginning of the data; the End key moves the cursor
  785.           to the end of the data field.  The BackSpace key is a
  786.           WPWP12WP
  787.  
  788.  
  789.  
  790.  
  791.  
  792.  
  793.           WPWPWash 'n Ware                        Photo PackWP
  794.           WPWPWP
  795.           WPWPWP
  796.           "Destructive" backspace.  The Delete key deletes the
  797.           character on top of the cursor.  You may also toggle
  798.           between Insert and OverWrite modes by striking the insert
  799.           key.
  800.           
  801.           When you complete the Description field, you'll be
  802.           prompted "Write record to data file? (Y/N/A)".
  803.           
  804.           Press "Y" (YES) and the record will be added to your data
  805.           file.
  806.           
  807.           Press "N" (NO) and you'll have a chance to re-enter your
  808.           data.  Use this feature to correct any errors.
  809.           
  810.           Press "A" (ABORT) to quit back to the main menu.  The
  811.           record will not be added to the data files.
  812.           
  813.           When you are satisfied with your data, press "Y".
  814.           
  815.           You're prompted for a Keyword Category.  You'll see the
  816.           KeyWord Category feature A LOT!
  817.           
  818.           Use the up and down arrow keys to highlight a specific
  819.           category.  When you are satisfied, press ENTER.
  820.           
  821.           Next, you're prompted for keywords.  Type your keywords
  822.           and press ENTER after each one.  You may enter as many
  823.           keywords as you want.  If you press ENTER without typing a
  824.           keyword, you return to the category select option.
  825.           (That's also known as a "Null Response")  This lets you
  826.           enter multiple keywords in multiple categories for a
  827.           single transparency!
  828.           
  829.           
  830.           When you're finished with keywords, press the F10 function
  831.           key.  You'll return to the main menu.
  832.           
  833.           
  834.           F2 - QUERY OR MAINTAIN EXISTING TRANSPARENCIES
  835.           
  836.           When you select the Query/Maintain function, you see
  837.           another option menu.
  838.           
  839.           You may select the following query/maintain functions:
  840.           
  841.           F1  -  Access by Chronological Order
  842.           
  843.           F2  -  Access by KeyWord
  844.           
  845.           F3  -  List all known KeyWords
  846.           
  847.           F10 -  Return to Main Menu
  848.           
  849.           
  850.           F1 - Access by Chronological Order
  851.           
  852.           WPWP13WP
  853.  
  854.  
  855.  
  856.  
  857.  
  858.  
  859.           WPWPWash 'n Ware                        Photo PackWP
  860.           WPWPWP
  861.           WPWPWP
  862.           This option lets you scroll through the transparency
  863.           database in date order.  When you select this option, you
  864.           must enter a beginning month and year.  Enter '00' for the
  865.           month and year to begin with the earliest date.
  866.           
  867.           Database records are displayed with several options  These
  868.           option let you scroll through the database (query
  869.           functions) and change or delete records in the database
  870.           (maintain functions).  You may also add new keywords to
  871.           existing records.
  872.           
  873.           Use function keys F1 and F2 to scroll back and forth.
  874.           When you've reached either the beginning or the end of the
  875.           data, you'll receive a prompting message.
  876.           
  877.           Function key F3 lets you re-enter a beginning date.  This
  878.           lets you begin viewing from a different date.
  879.           
  880.           When you select F4, you switch into "Edit" mode.  This
  881.           lets you make changes to the data fields in the current
  882.           record.  (The current record is the one currently being
  883.           displayed.)  The cursor moves to each data field EXCEPT
  884.           the date fields.  You may change these fields.
  885.           
  886.           NOTE: There is no way to change a date field.  This is
  887.           because the dates are KEY fields.  If you need to change a
  888.           date field, you must delete the record and re-add it with
  889.           the proper date.
  890.           
  891.           Function key F7 lets you delete a record.  Before the
  892.           record is actually deleted, you must confirm the delete.
  893.           The program prompts you to see if you really want to
  894.           delete the record -- you must press the "D" key to
  895.           actually perform the delete.  Any other key aborts the
  896.           delete.  (That means the record is left alone.)
  897.           
  898.           Function key F5 lets you add new keywords to the current
  899.           record.  It's similar to adding keywords when you are
  900.           adding a record.  You must select a category with the up
  901.           and down arrows.  When you are satisfied with the
  902.           category, press ENTER.  Enter as many keywords as you
  903.           wish; strike ENTER after typing each keyword.  Hitting
  904.           ENTER without typing a keyword lets you select a new
  905.           category.  Striking F10 during the category select
  906.           terminates the "Add a keyword" process.
  907.           
  908.           When you are finished scrolling and maintaining, press the
  909.           F10 key.  You'll return to the main menu.
  910.           
  911.           
  912.           F2  -  Access by KeyWord
  913.           
  914.           When you select the "Access by Keyword" option, you'll see
  915.           a list of keyword categories.  Use the up and down arrows
  916.           to highlight a desired category.  Strike ENTER when you
  917.           are satisfied.
  918.           WPWP14WP
  919.  
  920.  
  921.  
  922.  
  923.  
  924.  
  925.           WPWPWash 'n Ware                        Photo PackWP
  926.           WPWPWP
  927.           WPWPWP
  928.           
  929.           Next, you're prompted for a keyword.  Type the keyword;
  930.           then press ENTER.
  931.           
  932.           TranTrak searches for records that fit the
  933.           keyword/category specification.  When it finds a match, it
  934.           displays the record.
  935.           
  936.           You now have several options.  Just like the chronological
  937.           display, you may scroll back and forth between different
  938.           records, add keys, and edit or delete data records.
  939.           
  940.           HOWEVER, now you can also delete keywords.  You may not
  941.           delete a chronological key without deleting the entire
  942.           record.  You can, however, delete a category key without
  943.           deleting the data record.
  944.           
  945.           Use F1 and F2 to scroll back and forth between data
  946.           records.  You'll see all data records that match the
  947.           keyword/category specification.  Use F3 to enter a new
  948.           keyword/category.
  949.           
  950.           Press F4 to enter "Edit" mode.  You may now edit the data
  951.           record.  Note that you still may not edit the date fields.
  952.           
  953.           Press F5 to add new keywords to the record.  You must
  954.           select the proper category before you enter the keywords.
  955.           
  956.           Press F6 to remove the current keyword from the current
  957.           record.  The current keyword is the keyword/category you
  958.           entered to display the current record.
  959.           
  960.           Press F7 to delete the data record.  You must confirm the
  961.           delete by pressing the "D" key when you are prompted.
  962.           
  963.           Press F10 to return to the main menu.
  964.           
  965.           
  966.           F3  -  List all known KeyWords
  967.           
  968.           The whole idea of TranTrack is to let you rummage through
  969.           your transparency files, right?  As you've seen, you can
  970.           move back and forth fairly easily both chronologically and
  971.           by keywords.  TranTrack also lets you examine what
  972.           keywords are being used.
  973.           
  974.           Why?  Suppose you need photos for a regional garden
  975.           periodical.  What keywords would you scan?  What keywords
  976.           have you used?
  977.           
  978.           Maybe you know off the top of your head.  Then again,
  979.           maybe not.  That's where the "List all known KeyWords"
  980.           option comes in.
  981.           
  982.           When you select this option, you're prompted for a
  983.           category.  Use the arrow keys to highlight a desired
  984.           WPWP15WP
  985.  
  986.  
  987.  
  988.  
  989.  
  990.  
  991.           WPWPWash 'n Ware                        Photo PackWP
  992.           WPWPWP
  993.           WPWPWP
  994.           category, then press ENTER.
  995.           
  996.           You'll receive a screen listing all the known keywords
  997.           within that category. There may be more than one page of
  998.           keywords -- if so, you're prompted to scroll to the next
  999.           page.
  1000.           
  1001.           Once you've seen the known keywords, you can select
  1002.           promising looking topics.  Use the "Query by Keyword"
  1003.           option and try these topics.
  1004.           
  1005.           When you're finished scanning keywords, press F10 at the
  1006.           category select screen; you'll return to the main menu.
  1007.           
  1008.  
  1009.  
  1010.  
  1011.  
  1012.  
  1013.  
  1014.  
  1015.  
  1016.  
  1017.  
  1018.  
  1019.  
  1020.  
  1021.  
  1022.  
  1023.  
  1024.  
  1025.  
  1026.  
  1027.  
  1028.  
  1029.  
  1030.  
  1031.  
  1032.  
  1033.  
  1034.  
  1035.  
  1036.  
  1037.  
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045.  
  1046.  
  1047.  
  1048.  
  1049.  
  1050.           WPWP16WP
  1051.  
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057. WP$